home *** CD-ROM | disk | FTP | other *** search
/ Sun Solutions 1997 April to September / Sun Solutions CD - APR '97 - SEP '97 (704-3778-12 Rev. H)(Sun Microsystems, Inc.)(1997).iso / products / bin / httpd / Solaris_2 / uptime < prev    next >
Text File  |  1995-05-18  |  165b  |  15 lines

  1. #!/bin/sh
  2.  
  3. UPTIME=/usr/ucb/uptime
  4.  
  5. echo Content-type: text/plain
  6. echo
  7.  
  8. if [ -x $UPTIME ];  then
  9.     $UPTIME
  10. else 
  11.     echo Cannot find uptime command on this system.
  12. fi
  13.  
  14.  
  15.